home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / enlightenment / e_ipc.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  438b  |  29 lines

  1. /*
  2.  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  3.  */
  4. #ifdef E_TYPEDEFS
  5.  
  6. #include      "e_ipc_handlers_list.h"
  7.  
  8. typedef enum _E_Ipc_Domain
  9. {
  10.    E_IPC_DOMAIN_NONE,
  11.    E_IPC_DOMAIN_SETUP,
  12.    E_IPC_DOMAIN_REQUEST,
  13.    E_IPC_DOMAIN_REPLY,
  14.    E_IPC_DOMAIN_EVENT,
  15.    E_IPC_DOMAIN_LAST
  16. } E_Ipc_Domain;
  17.  
  18. typedef int E_Ipc_Op;
  19.  
  20. #else
  21. #ifndef E_IPC_H
  22. #define E_IPC_H
  23.  
  24. EAPI int  e_ipc_init(void);
  25. EAPI void e_ipc_shutdown(void);
  26.  
  27. #endif
  28. #endif
  29.